home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _3E0ECB8D113948F5AD8B90B3C24A0152 < prev    next >
Encoding:
Text File  |  2000-03-27  |  780 b   |  24 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4.  
  5.  
  6.  
  7. local entity deadbum // the bum who will get killed on the subway tracks
  8. local entity bumkiller // the guy who will shoot the bum from behind
  9. local int sig1
  10.  
  11. deadbum = find entity with targetname "deadbum"
  12. bumkiller = find entity with targetname "bumkiller"
  13.  
  14.  
  15. use entity bumkiller // spawns the bumkiller in
  16. animate entity bumkiller performing action STD_R_N_PK_N by moving [0, -256, 0]  signaling sig1 // guy runs down other track tunnel
  17. wait for all clearing sig1
  18. animate entity bumkiller performing action STD_F_FWD_P_2 targeting entity deadbum kill signaling sig1 // he should kill the bum with this shot
  19. wait for all clearing sig1
  20.  
  21. animate entity bumkiller performing action SCRIPT_RELEASE
  22.  
  23.  
  24.